home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / giochi / chinacha.lha / ChinaChallenge3 / C / makefile < prev   
Makefile  |  1995-09-20  |  220b  |  16 lines

  1.  
  2. CC        = gcc
  3.  
  4. CFLAGS        = -V2.3.3 -O2 -msmall-code -fbaserel -fno-builtin
  5.  
  6. LFLAGS        = -noixemul -fbaserel
  7.  
  8. LDLIBS        = -lamiga -lmath
  9.  
  10. OBJS        = cc3.o img.o
  11.  
  12. # the game :)
  13.  
  14. CC3:        $(OBJS)
  15.         $(CC) $(LFLAGS) -o $@ $(OBJS) $(LDLIBS)
  16.